home *** CD-ROM | disk | FTP | other *** search
/ Resource for Source: C/C++ / Resource for Source - C-C++.iso / codelib7 / v_09_07 / 9n07094a < prev    next >
Encoding:
Text File  |  1995-11-01  |  205 b   |  12 lines

  1. Display         *display;
  2. char            *font_name;
  3. XFontStruct     *font;
  4.  
  5. font = XLoadQueryFont( display,
  6.        font_name );
  7.  
  8. if ( font != (XFontStruct *) NULL )
  9.    {
  10.    /* success */
  11.    }
  12.